What is the role of the `@debug` directive in SASS?
Description : Using `@debug` for troubleshooting SASS code.
Answer :
`@debug` is used inSASS to output debugging information during the compilation process. For example,`@debug $primary-color;` will print the value of`$primary-color` to the console, helping you troubleshoot issues with variables, mixins, or functions. It’s a valuable tool for understanding and resolving problems in your SASS code.